home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / SpriteFight 2002 v2.0a1 / StringUtils.h < prev    next >
Text File  |  1993-05-23  |  462b  |  28 lines

  1. ///--------------------------------------------------------------------------------------
  2. // StringUtils.h
  3. ///--------------------------------------------------------------------------------------
  4.  
  5.  
  6. #ifndef __STRINGUTILS__
  7. #define __STRINGUTILS__
  8.  
  9. #ifndef __TYPES__
  10. #include <Types.h>
  11. #endif
  12.  
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18.  
  19. void PStrCpy(Str255 srcStr, Str255 dstStr);
  20. void PStrCat(Str255 srcStr, Str255 dstStr);
  21.  
  22.  
  23. #ifdef __cplusplus
  24. };
  25. #endif
  26. #endif
  27.  
  28.